The snap package manager is integrated on Ubuntu. It solves dependency problems.
$ sudo snap install <package_name>
APT is the standard Ubuntu packet manager. It uses dpkg under the hood. Dependency problems can occur.
$ sudo apt install <package_name>
The APT sources are located in
/etc/apt/sources.list
Important: Replace "yakkety" with the codename of your Ubuntu distribution.
deb http://archive.canonical.com/ubuntu yakkety partner
deb-src http://archive.canonical.com/ubuntu yakkety partner
# deb http://extras.ubuntu.com/ubuntu yakkety main
# deb-src http://extras.ubuntu.com/ubuntu yakkety main
deb http://archive.ubuntu.com/ubuntu yakkety main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu yakkety main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ yakkety-security universe main restricted multiverse
deb http://archive.ubuntu.com/ubuntu yakkety-updates universe main restricted multiverse
deb http://archive.ubuntu.com/ubuntu yakkety-backports universe main restricted multiverse
deb http://archive.ubuntu.com/ubuntu yakkety-proposed universe main restricted multiverse
When you need to install a .deb package you can use DPKG. DPKG is the debian package installer. Dependency problems can occur.
$ sudo dpkg -i <package_name>.deb
A tar.gz file archive cannot be automatically installed. Follow the instructions of the README inside the archive.
$ tar -xvf <archive_name>.tar
To save disk space and bandwidth over the network all files are saved using compression program such as gzip or bzip2. To extract / unpack a .tar.gz (gzip) file, enter (note -z option):
$ tar -xzvf <archive_name>.tar.gz
This packaging system is only for python packages. It contains the latest python packages. Other package systems like APT don't always have the latest version available so install your python packages from pip. Note that there are two versions of pip available. One is for Python 2 and the other for Python 3.
Python 2
$ sudo apt install python-pip
Python 3
$ sudo apt install python3-pip
Python 2
$ sudo pip install <package_name>
Python 3
$ sudo pip3 install <package_name>